#background_cycler{padding:0;margin:0;width:100%;height:100%;position:absolute;top:0;left:0;z-index:-1;}
#background_cycler div{position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:white;background-size:cover;background-position:center center}
#background_cycler div.active{z-index:3}

body {
	background-color:#4C627A;
	font-family: Tahoma, Verdana, Segoe, sans-serif;
}

.home {
	height:99vh;
}

/* ======================================================================== */
/* ================================ NAVBAR ================================ */
/* ======================================================================== */
.navbar {
	border-bottom: 1px solid #BBBBBB;
	background-color: rgba(0, 0, 16, 0.6);
	text-align: center;
	position: fixed;
	width: 98vw;
	z-index: 1;
}

.nav-link {
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	color: white;
	padding: 20px 0px;
	margin: 0px 30px;
	display: inline-block;
	position: relative;
}

.nav-link:hover {
	opacity: 1;
}

.nav-link::before {
	transition: 300ms;
	height: 3px;
	content: "";
	position: absolute;
	background-color: yellow;
}

.nav-link-ltr::before {
	width: 0%;
	bottom: 10px;
}

.nav-link-ltr:hover::before {
	width: 100%;
}

/* ======================================================================== */
/* ================================= WRAP ================================= */
/* ======================================================================== */
.outer_wrap {
    position: absolute;
    top: 50vh;
    left: 50vw;
    margin-top: -225px;
    margin-left: -250px;
    width:500px;
	height:450px;
	text-align: center;
	background-color: rgba(0, 0, 16, 0.6);
}

.title {
	color:white;
	font-family: Tahoma, Verdana, Segoe, sans-serif;
	font-size: 30px;
	margin:auto;
}

.sub-title {
	color:white;
	font-family:Tahoma;
	font-size: 20px;
	margin:auto;
}

/* ======================================================================== */
/* ================================ SERCIES =============================== */
/* ======================================================================== */
.services {
	height:100vh;
	margin-left: -2vw;
	
	background-image: url(../img/ship6.jpg);
	background-size: 102vw 100vh;
}

.services_box_1 {
	position: absolute;
	top: 110vh;
	left: 5vw;
	height:25vh;
	width:90vw;
	color: white;
	background-color: rgba(0, 0, 16, 0.7);
}

.services_box_2 {
	position: absolute;
	top: 140vh;
	left: 5vw;
	height:25vh;
	width:90vw;
	color: white;
	background-color: rgba(0, 0, 16, 0.7);
}

.services_box_3 {
	position: absolute;
	top: 170vh;
	left: 5vw;
	height:25vh;
	width:90vw;
	color: white;
	background-color: rgba(0, 0, 16, 0.7);
}


/* ======================================================================== */
/* ================================ CONTACT =============================== */
/* ======================================================================== */
.contact {
	height:100vh;
	margin-left: -2vw;
	background-image: url(../img/ship7.jpg);
	background-size: 102vw 100vh;
}

.contact_box {
	position: relative;
	top: 10vh;
	left: 30vw;
	height:650px;
	width:800px;
	background-color: rgba(0, 0, 16, 0.8);
    /*background-color:#0C0C0C;*/
	color: white;
}

.row_picture {
	padding: 15px;
	display: flex;
}

.column_picture {
	flex: 33.33%;
	padding: 5px;
	text-align: center;
}

input[type="text"], input[type="email"], select, textarea {
	width: 80%;
	padding: 12px;
	display:block;
	border: 1px solid #ccc;
	background-color: #141414;
	border-radius: 4px;
	outline: none;
	border-color: #BC9864;
	box-sizing: border-box;
	margin:auto;
	margin-bottom: 16px;
	color: white;
	opacity:1;
	resize: none;
}

input[type=submit] {
	background-color: #BC9864;
	color: black;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	opacity:1;
	width: 80%;
	display:block;
	margin:auto;
	font-size: large;
}

